home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / gmtb.dir / 00054_ScoreGoFrame+AdjustTempoOnMonkeyRun.ls < prev    next >
Encoding:
Text File  |  2001-09-12  |  289 b   |  20 lines

  1. property t
  2. global monkey
  3.  
  4. on beginSprite me
  5.   t = 45
  6. end
  7.  
  8. on exitFrame me
  9.   if (monkey.monkeyRunning = 1) and (t = 45) then
  10.     t = 16
  11.     puppetTempo(16)
  12.   else
  13.     if (monkey.monkeyRunning = 0) and (t = 16) then
  14.       t = 45
  15.       puppetTempo(45)
  16.     end if
  17.   end if
  18.   go(the frame)
  19. end
  20.